Component org.nuxeo.ecm.platform.annotations.repository.contrib
In bundle org.nuxeo.ecm.annotations.repository
Resolution Order
53
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.annotations.repository.contrib--documentAnnotability
- org.nuxeo.ecm.platform.annotations.repository.contrib--jcrLifecycleEventId
- org.nuxeo.ecm.platform.annotations.repository.contrib--graphManagerEventListener
- org.nuxeo.ecm.platform.annotations.repository.contrib--documentEventListener
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.annotations.repository.contrib">
<extension target="org.nuxeo.ecm.platform.annotations.AnnotationsRepositoryService"
point="documentAnnotability">
<documentAnnotability class="org.nuxeo.ecm.platform.annotations.repository.service.DefaultDocumentAnnotability"/>
</extension>
<extension target="org.nuxeo.ecm.platform.annotations.AnnotationsRepositoryService" point="jcrLifecycleEventId">
<eventId>documentCheckedIn</eventId>
<eventId>documentRemoved</eventId>
<eventId>versionRemoved</eventId>
<eventId>documentRestored</eventId>
</extension>
<extension target="org.nuxeo.ecm.platform.annotations.AnnotationsRepositoryService" point="graphManagerEventListener">
<listener class="org.nuxeo.ecm.platform.annotations.repository.service.DocumentVersionnedGraphManager"/>
</extension>
<extension target="org.nuxeo.ecm.platform.annotations.AnnotationsRepositoryService"
point="documentEventListener">
<listener name="defaultAnnotatedDocumentListener"
class="org.nuxeo.ecm.platform.annotations.repository.service.AnnotatedDocumentEventListenerImpl" />
</extension>
</component>